/* فایل استایل شخصی‌سازی */
:root {
    --primary-color: #ffc107;
    /* --primary-color: #007bff; */
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --font-family: 'Tahoma', 'Arial', sans-serif;
}




body {
    font-family: var(--font-family);
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.search-bar {
    max-width: 400px;
}

.banner-section {
    margin: 20px 0;
}

.banner-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    aspect-ratio: 16 / 9;
    /* ✅ نسبت ثابت */
    transition: transform 0.3s ease;
}

/* ✅ عکس با پوشش کامل بدون کشیدگی */
.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

/* ✅ متن وسط تصویر */
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    padding: 15px 20px;
    border-radius: 10px;
    z-index: 2;
}

.banner-text h3,
.banner-text p {
    margin: 0;
}

.banner-item:hover {
    transform: translateY(-5px);
}


.categories-slider-container {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
    padding-bottom: 10px;
}

.categories-slider {
    display: inline-flex;
    gap: 15px;
    padding: 10px 0;
}

.category-item {
    text-align: center;
    width: 120px;
    flex-shrink: 0;
    white-space: normal;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.category-circle {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    cursor: pointer;
    margin: 0 auto;
}

.category-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-circle:hover {
    transform: scale(1.1);
}

.category-item h6 {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 0.85rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    padding: 0 5px;
}

.product-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    background-color: #fff;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    overflow: hidden;
    border-bottom: 1px solid #f1f1f1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* ✅ جلوگیری از زوم شدن و بریدگی */
}


.product-card .card-body {
    padding: 15px;
    text-align: center;
    background-color: #fff;
    /* ✅ بک‌گراند سفید برای بخش پایین */
}

.product-card h6 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #333;
}

.product-card p {
    margin: 0;
}

.product-card .btn {
    margin-top: 10px;
    border-radius: 25px;
}



/* .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            border-radius: 25px;
            padding: 10px 25px;
        }

        .btn-outline-primary {
            border-color: var(--primary-color);
            color: var(--primary-color);
            border-radius: 25px;
            padding: 10px 25px;
        } */

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}


.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--danger-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main {
    aspect-ratio: 1 / 1;
    /* نسبت مربع */
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--secondary-color);
}

.gallery-thumb {
    height: 80px;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-thumb:hover {
    transform: scale(1.05);
}

.login-form {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cart-item {
    border-bottom: 1px solid #dee2e6;
    padding: 15px 0;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: white;
}


/* رنگ قیمت */
.product-price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* رنگ قیمت */
.text-primary-custom {
    color: var(--primary-color);
    font-weight: bold;
}

/* دکمه سفارشی */
.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    color: #fff;
    transition: background-color 0.3s ease;
}


/* 📱 نسخه موبایل */
@media (max-width: 768px) {

    /* ساختار اصلی صفحه */
    #product .container {
        padding: 0 15px;
    }

    #product .row {
        flex-direction: column;
    }

    /* بخش گالری */
    .gallery-main {
        height: auto;
        border-radius: 10px;
        overflow: hidden;
    }

    .gallery-main img {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 10px;
    }

    .gallery-thumb {
        height: 60px;
        margin-bottom: 10px;
    }

    .gallery-thumb img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        border-radius: 8px;
    }

    /* عنوان و قیمت */
    #productTitle {
        font-size: 1.2rem;
        text-align: center;
        margin-top: 15px;
    }

    #productPrice {
        font-size: 1.1rem;
        text-align: center;
        display: block;
    }

    .text-content del {
        display: block;
        text-align: center;
        font-size: 0.9rem;
    }

    /* توضیحات */
    #productDescription {
        font-size: 0.95rem;
        text-align: justify;
        margin-top: 10px;
    }

    /* کنترل تعداد */
    .quantity-controls {
        justify-content: center;
        margin: 15px 0;
    }

    .quantity-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    /* دکمه سبد خرید */
    .btn-primary-custom {
        font-size: 1rem;
        padding: 12px;
        border-radius: 10px;
    }

    /* چیدمان کلی */
    .col-md-6 {
        width: 100%;
        max-width: 100%;
    }

    /* گالری کوچک در حالت افقی */
    .gallery-thumb {
        flex: 0 0 auto;
        width: 24%;
        margin-right: 1%;
    }
}


/* 📦 گالری اصلی */
.product-gallery {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-main {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-main img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
}

/* 📸 نوار تصاویر کوچک */
.gallery-thumbs {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
}

.thumb-slider {
    display: inline-flex;
    gap: 10px;
}

.thumb {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* 🏷 عنوان و قیمت */
#productTitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
}

.product-price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
}

.old-price {
    font-size: 1rem;
    color: #999;
}

/* 📄 توضیحات */
.text-justify-low {
    text-align: justify;
    line-height: 1.8;
}

/* 🔢 کنترل تعداد */
.quantity-container {
    text-align: center;
}

.quantity-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 1px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* 📱 حالت موبایل */
@media (max-width: 768px) {
    #productTitle {
        font-size: 1.3rem;
        text-align: center;
    }

    .product-price-container {
        flex-direction: row;
        justify-content: center;
    }

    .gallery-main {
        height: auto;
    }

    .thumb {
        width: 65px;
        height: 65px;
    }

    .product-info {
        text-align: center;
    }

    .long-description {
        text-align: justify;
    }
}

/* 🎨 استایل ورودی تعداد */
.quantity-input {
    width: 60px;
    height: 35px;
    text-align: center;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: all 0.2s ease;
}

.quantity-input:focus {
    box-shadow: 0 0 5px var(--primary-color);
}

/* 📦 توضیحات تکمیلی وسط چین */
.long-description {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* استایل‌های آلرت */
.alert {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-right: 4px solid var(--success-color);
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-right: 4px solid var(--danger-color);
}

.alert-dismissible .btn-close {
    padding: 0.75rem;
}

/* انیمیشن برای آلرت */
.alert {
    animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* حالت موبایل */
@media (max-width: 768px) {
    .alert {
        margin: 10px;
        border-radius: 8px;
    }

    .alert-dismissible .btn-close {
        padding: 0.5rem;
    }
}

/* 📱 استایل ریسپانسیو برای صفحه سبد خرید */
@media (max-width: 768px) {
    #cart .card-body {
        padding: 10px;
    }

    .cart-item .row {
        flex-direction: column;
        align-items: flex-start !important;
        text-align: right;
        gap: 10px;
    }

    .cart-item .col-2,
    .cart-item .col-3,
    .cart-item .col-4,
    .cart-item .col-1 {
        width: 100% !important;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .cart-item img {
        width: 100%;
        height: auto;
        max-width: 120px;
        display: block;
        margin: 0 auto 10px;
    }

    .cart-item h6 {
        font-size: 1rem;
        margin-bottom: 5px;
        text-align: center;
    }

    .cart-item small {
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }

    .quantity-controls {
        justify-content: center;
        margin: 10px 0;
    }

    .quantity-input {
        width: 50px;
        height: 35px;
    }

    .quantity-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .cart-item strong {
        display: block;
        text-align: center;
        margin: 10px 0;
        font-size: 1rem;
    }

    .cart-item .text-end {
        text-align: center !important;
    }

    /* خلاصه سفارش پایین بیاد */
    .col-md-8,
    .col-md-4 {
        width: 100%;
        max-width: 100%;
    }

    #cart .col-md-4 {
        margin-top: 20px;
    }
}

/* استایل‌های کارت سفارشات */
.order-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    background-color: #fff;
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.order-card .card-header {
    background: linear-gradient(135deg, var(--primary-color), #ffd54f);
    color: #333;
    border-bottom: none;
    padding: 15px 20px;
    font-weight: 600;
}

.order-id {
    font-size: 1.1rem;
    font-weight: 700;
}

.order-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

.order-card .card-body {
    padding: 20px;
}

.order-status .badge {
    font-size: 0.85rem;
    border-radius: 8px;
}

.order-summary {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.order-summary span {
    font-size: 0.9rem;
}

.order-actions .btn {
    border-radius: 10px;
    font-weight: 500;
}

/* صفحه‌بندی */
.pagination {
    margin-bottom: 0;
}

.page-link {
    border: none;
    color: var(--dark-color);
    padding: 8px 15px;
    margin: 0 3px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: var(--primary-color);
    color: #333;
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #333;
}

/* حالت خالی سفارشات */
.empty-orders-icon {
    opacity: 0.7;
}

/* استایل‌های ریسپانسیو */
@media (max-width: 768px) {
    .order-card .card-header {
        padding: 12px 15px;
    }

    .order-card .card-body {
        padding: 15px;
    }

    .order-summary {
        padding: 12px;
    }

    .order-actions .btn {
        font-size: 0.9rem;
        padding: 10px;
    }

    .pagination .page-link {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .order-card {
        margin-bottom: 20px;
    }

    .d-flex.justify-content-between.align-items-center.mb-4 {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .d-flex.gap-2 {
        width: 100%;
        justify-content: center;
    }
}

/* انیمیشن برای کارت‌ها */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-card {
    animation: fadeInUp 0.5s ease-out;
}

/* تأخیر برای انیمیشن کارت‌ها */
.order-card:nth-child(1) {
    animation-delay: 0.1s;
}

.order-card:nth-child(2) {
    animation-delay: 0.2s;
}

.order-card:nth-child(3) {
    animation-delay: 0.3s;
}

.order-card:nth-child(4) {
    animation-delay: 0.4s;
}

.order-card:nth-child(5) {
    animation-delay: 0.5s;
}

.order-card:nth-child(6) {
    animation-delay: 0.6s;
}



/* 📦 فرم فیلتر */
.filter-card {
    border-radius: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.filter-card:hover {
    transform: translateY(-3px);
}

.filter-card h5 {
    color: var(--dark-color);
    font-weight: 600;
}


.about-circle {
    width: 130px;
    /* عرض دایره */
    height: 130px;
    /* ارتفاع دایره */
    border-radius: 50%;
    /* گرد کردن دایره */
    background-color: var(--light-color);
    /* رنگ پس‌زمینه ملایم بنفش */
    display: flex;
    /* برای وسط‌چین کردن */
    align-items: center;
    /* عمودی وسط */
    justify-content: center;
    /* افقی وسط */
    margin-bottom: 1rem;
    /* فاصله پایین */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* سایه ملایم */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* افکت شناور */
.about-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.about-circle i {
    font-size: 3rem;
    /* اندازه بزرگ آیکون */
    color: var(--primary-color);
    /* بنفش اصلی (قابل تغییر) */
}

/* لینک سیاه و بدون رنگ */
a {
    color: inherit;
    text-decoration: none;
}


.error-back-btn {
    background-color: #dc3545;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.error-back-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}



@media (max-width: 767.98px) {
    .d-md-none .input-group {
        margin-bottom: 0;
    }

    .d-md-none .btn-primary-custom {
        height: 38px;
        /*هم‌ارتفاع با input*/
        width: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


/* استایل برای سایدبار دسکتاپ */
.filter-card {
    position: sticky;
    top: 20px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.filter-card .card-body {
    padding: 1.5rem;
}

/* استایل برای دکمه استیکی موبایل */
.sticky-filter-btn-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    animation: fadeInUp 0.5s ease;
}

.sticky-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    font-weight: 600;
}

.sticky-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* برای نمایش بهتر در نسخه موبایل */
@media (max-width: 991.98px) {
    .sticky-filter-btn-container {
        bottom: 25px;
        right: 25px;
    }

    .sticky-filter-btn {
        padding: 10px 14px;
    }
}

@media (max-width: 576px) {
    .sticky-filter-text {
        display: none;
    }

    .sticky-filter-btn {
        padding: 12px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
}

/* استایل‌های صفحه لاگین و ثبت‌نام */
.nav-tabs .nav-link {
    color: var(--secondary-color);
    border: none;
    padding: 12px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
}

.nav-tabs .nav-link:not(.active):hover {
    color: var(--primary-color);
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
}

/* استایل فرم‌ها */
.login-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.login-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.login-form .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.login-form .btn-primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
}

/* استایل برای حالت خطی تب‌ها (اگر می‌خواهید) */
.nav-tabs {
    border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link.active {
    border-bottom: 3px solid var(--primary-color);
}

/* استایل برای inputهای invalid */
.form-control.is-invalid:focus {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* استایل برای دکمه‌های فرم */
.tab-content .btn {
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-content .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.tab-content .btn-primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
}

/* استایل برای تب‌ها در موبایل */
@media (max-width: 768px) {
    .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .login-form {
        margin: 20px auto;
        padding: 20px;
    }
}


@font-face {
    font-family: 'Miriad';
    src: url('/path/to/miriad.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

.persian-style-font {
    font-family: 'Miriad', 'Scheherazade', 'Arabic Typesetting', serif;
    letter-spacing: 1px;
    font-size: 15px;
    /* اندازه مورد نظر */
}